home *** CD-ROM | disk | FTP | other *** search
- #
- #
- # Makefile for match.c
- #
- # Created 01-20-91 JBK
- # Last Modified 02-13-91 JBK
- #
- #
-
- CC = cl
-
- #
- # This is FLAGS for optimized version
- #FLAGS = /c /AL /G2 /Ox /W4
-
- #
- # This is FLAGS for optimized version with main
- FLAGS = /D TEST /AL /G2 /Ox /W4
-
- #
- # This is FLAGS for debugging versions with main
- #FLAGS = /D TEST /AL /G2 /Od /W4 /Zi /qc
-
-
- match.exe: match.c match.h
- $(CC) $(FLAGS) match.c
-